home *** CD-ROM | disk | FTP | other *** search
/ CD/PC Actual 76 / DVD Actual 1 Marzo 2003.iso / Trial / TurboCAD 7.1 Pro / Data.Cab / F24512_BlockInsertDialog.h < prev    next >
Encoding:
C/C++ Source or Header  |  2000-11-10  |  915 b   |  38 lines

  1. // BlockInsertDialog.h : header file
  2. //
  3.  
  4. /////////////////////////////////////////////////////////////////////////////
  5. // CBlockInsertDialog dialog
  6.  
  7. class CBlockInsertDialog : public CDialog
  8. {
  9. // Construction
  10. public:
  11.     CBlockInsertDialog(IDrawing* pIDrawing, CWnd* pParent = NULL);   // standard constructor
  12.     ~CBlockInsertDialog();
  13.  
  14. // Dialog Data
  15.     //{{AFX_DATA(CBlockInsertDialog)
  16.     enum { IDD = IDD_BLK_INSERT };
  17.     CString    m_strBlockName;
  18.     //}}AFX_DATA
  19.     Blocks* m_pBlocks;
  20.  
  21. // Overrides
  22.     // ClassWizard generated virtual function overrides
  23.     //{{AFX_VIRTUAL(CBlockInsertDialog)
  24.     protected:
  25.     virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  26.     //}}AFX_VIRTUAL
  27.     virtual BOOL OnInitDialog();
  28.  
  29. // Implementation
  30. protected:
  31.  
  32.     // Generated message map functions
  33.     //{{AFX_MSG(CBlockInsertDialog)
  34.     afx_msg void OnDblclkBlocks();
  35.     //}}AFX_MSG
  36.     DECLARE_MESSAGE_MAP()
  37. };
  38.